home *** CD-ROM | disk | FTP | other *** search
- on RecordList TreeLevel, LineNumber
- global gList, gListIndex, RecListIndexCat, RecListIndexSubCat, RecListIndexSubCat2
- if TreeLevel < 2 then
- set the visible of sprite 6 to 0
- end if
- if TreeLevel < 3 then
- set the visible of sprite 7 to 0
- end if
- if TreeLevel < 4 then
- set the visible of sprite 8 to 0
- end if
- set the text of cast "Record Book Data" to " "
- set the itemDelimiter to ","
- if TreeLevel = 0 then
- set the text of cast "Record Book Cat" to line 1 to 2 of gList & RETURN
- set RecListIndexCat to line 1 to 2 of gListIndex
- else
- if TreeLevel = 1 then
- set L to line LineNumber of RecListIndexCat
- repeat with i = 1 to the number of items in L
- set n to integer(item i of L)
- put line n of gList into line i of Names
- put line n of gListIndex into line i of index
- end repeat
- set the text of cast "Record Book SubCat" to Names & RETURN
- set RecListIndexSubCat to index
- set the visible of sprite 6 to 1
- else
- if TreeLevel = 2 then
- set L to line LineNumber of RecListIndexSubCat
- repeat with i = 1 to the number of items in L
- set n to integer(item i of L)
- put line n of gList into line i of Names
- put line n of gListIndex into line i of index
- end repeat
- set the text of cast "Record Book SubCat2" to Names & RETURN
- set RecListIndexSubCat2 to index
- set the visible of sprite 7 to 1
- else
- if TreeLevel = 3 then
- set fName to line LineNumber of RecListIndexSubCat2
- set fSubDir to fName
- repeat while the number of chars in fName < 3
- set fName to "0" & fName
- end repeat
- repeat while the number of chars in fSubDir < 3
- set fSubDir to "0" & fSubDir
- end repeat
- delete char -30000 of fSubDir
- put MakePath("RECORDS:TEXT:" & fSubDir & ":" & fName & ".TXT")
- set FileObj to FileIO(mnew, "read", MakePath("RECORDS:TEXT:" & fSubDir & ":" & fName & ".TXT"))
- if objectp(FileObj) then
- set data to FileObj(mReadFile)
- FileObj(mdispose)
- if data = EMPTY then
- set data to " "
- end if
- set the text of cast "Record Book Data" to data & RETURN
- set the visible of sprite 8 to 1
- end if
- end if
- end if
- end if
- end if
- end
-